1241
| 1241 | SYMAPI_AEVENT2_UID_SRDFA_CYCLE_TIME_T |
|---|---|
| Category | status |
| Component | The SRDF Group, for example, SRDF-grp=13 |
| Severity | Determined by Threshold values. See below. |
| Message | Time since last SRDFA cycle switch exceeds minimum cycle time by <NN> seconds. |
This is a Threshold event that indicates the amount (in seconds) by which an SRDFA Group's Cycle Time exceeds the minimum that is configured.
Unless threshold values are supplied with the registration (in the daemon_options file), the following defaults are used to derive an event severity:
If value is >= 5 — Warning
Otherwise — Normal
Notes
This is determined by calling SymReplicationGet() and examining the time_since_last_switch and duration_of_last_cycle quantities for Active, R1, non-MSC sessions.
The event value corresponds to the number of seconds that the larger of these two is beyond the configured min_cycle_time. If the time(s) are less than min_cycle_time (everything normal), the event value is 0. To protect against rounding problems, the test is actually against min_cycle_time+1. If the times are less than min_cycle_time+1, the event value will be 0. Therefore, possible event values are: 0, 2, 3, 4, 5, etc.
For example, assuming a min_cycle_time of 10:
| time_since_last_switch | event value |
|---|---|
| 9 | 0 |
| 10 | 0 |
| 11 | 0 |
| 13 | 3 |